home *** CD-ROM | disk | FTP | other *** search
/ Final Destination 2 Press Kit / Final Destination 2 Press Kit.iso / pc / notes.dxr / Internal_1_startMovie.ls < prev    next >
Encoding:
Text File  |  2003-01-02  |  249 b   |  15 lines

  1. global gStartTime
  2.  
  3. on startMovie
  4.   gStartTime = the timer
  5.   if not soundBusy(1) then
  6.     puppetSound(1, "Music")
  7.   end if
  8. end
  9.  
  10. on stopMovie
  11.   endTime = the timer
  12.   totalTime = (endTime - gStartTime) / 60
  13.   trackSection(totalTime, the movieName)
  14. end
  15.